check table exists in db laravel

51

check table exists in db laravel -

if (!Schema::hasTable('table_name')) {
    // Code to create table
}

laravel if database has table -

if (Schema::hasTable('users')) {
    // The "users" table exists...
}

if (Schema::hasColumn('users', 'email')) {
    // The "users" table exists and has an "email" column...
}

Comments

Submit
0 Comments